home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 February / MacFormat 87.iso / Shareware Plus / Internet / DropFTP 1.1 w⁄DD ƒ / Extras / BBEdit Scripts / Save with DropFTP < prev   
Encoding:
Text File  |  1999-10-13  |  451 b   |  16 lines  |  [TEXT/ToyS]

  1. tell application "BBEdit 5.1"
  2.     try
  3.         if modified of window 1 is true then save window 1
  4.     on error errString
  5.         display dialog "Error: " & errString buttons "OK" default button 1
  6.     end try
  7.     try
  8.         set myfile to file of window 1
  9.         tell application "DropFTP" -- RENAME THE APPLICATION TO MATCH YOUR COPY OF DROPFTP
  10.             launch
  11.             open myfile
  12.         end tell
  13.     on error errString
  14.         display dialog "Error: " & errString buttons "OK" default button 1
  15.     end try
  16. end tell